home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-02-19 | 615 b | 30 lines |
- # Makefile for kaffe2native instruction converter.
- #
- # Copyright (c) 1996 Systems Architecture Research Centre,
- # City University, London, UK.
- #
- # See the file "license.terms" for information on usage and redistribution
- # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- #
- # Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
-
- srcdir= @srcdir@
- VPATH= @srcdir@
- CC= @CC@
- CFLAGS= @CFLAGS@
- LDFLAGS= @LDFLAGS@
-
- OBJECTS= kaffe2native.o
-
- all: kaffe2native
-
- kaffe2native: $(OBJECTS)
- $(CC) $(LDFLAGS) -o kaffe2native $(OBJECTS)
-
- install:
-
- clean:
- rm -f $(OBJECTS) kaffe2native
-
- distclean: clean
-